home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part2 / 13751 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1003 b 

  1. Path: noc.netcom.net!news
  2. From: Tarang Deshpande <tarang@willows.com>
  3. Newsgroups: comp.lang.c
  4. Subject: Re: STDIO.H
  5. Date: Tue, 09 Apr 1996 14:51:38 -0700
  6. Organization: NETCOM Network Operations
  7. Message-ID: <316ADBEA.3FE8@willows.com>
  8. References: <4ke6d8$r42@newsbf02.news.aol.com>
  9. NNTP-Posting-Host: daffy.willows.com
  10. Mime-Version: 1.0
  11. Content-Type: text/plain; charset=us-ascii
  12. Content-Transfer-Encoding: 7bit
  13. X-Mailer: Mozilla 2.0GoldB2 (Win95; I)
  14.  
  15. JeffSCman wrote:
  16. > I am using Borlandc C++ 3.1.  In STDIO.H the constant FOPEM_MAX is defined
  17. > using the constant _NFILE_ which == 20.  This limits the number of files
  18. > that I can open at one time to 20 files. I need more.  Can I increase this
  19. > value safely ??
  20. > Thanx
  21. > Jeff
  22.  
  23. No.  MS-DOS has a limit of 20 open file handles at a time.  Even if you did
  24. enlarge the number when you attempted to open the 20th file you would get 
  25. back an error.  Note that you can not actually open 20 files since there are
  26. some files open automatically.
  27.  
  28. Tarang
  29.